1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package net.sf.webphotos.gui.component;
17
18 import java.beans.*;
19
20
21
22
23
24 public class PainelFotoBeanInfo extends SimpleBeanInfo {
25
26
27
28 private static BeanDescriptor getBdescriptor(){
29 BeanDescriptor beanDescriptor = new BeanDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class , null );
30
31
32
33 return beanDescriptor; }
34
35 private static final int PROPERTY_accessibleContext = 0;
36 private static final int PROPERTY_actionMap = 1;
37 private static final int PROPERTY_alignmentX = 2;
38 private static final int PROPERTY_alignmentY = 3;
39 private static final int PROPERTY_ancestorListeners = 4;
40 private static final int PROPERTY_autoscrolls = 5;
41 private static final int PROPERTY_background = 6;
42 private static final int PROPERTY_backgroundSet = 7;
43 private static final int PROPERTY_baselineResizeBehavior = 8;
44 private static final int PROPERTY_border = 9;
45 private static final int PROPERTY_bounds = 10;
46 private static final int PROPERTY_colorModel = 11;
47 private static final int PROPERTY_component = 12;
48 private static final int PROPERTY_componentCount = 13;
49 private static final int PROPERTY_componentListeners = 14;
50 private static final int PROPERTY_componentOrientation = 15;
51 private static final int PROPERTY_componentPopupMenu = 16;
52 private static final int PROPERTY_components = 17;
53 private static final int PROPERTY_containerListeners = 18;
54 private static final int PROPERTY_cursor = 19;
55 private static final int PROPERTY_cursorSet = 20;
56 private static final int PROPERTY_debugGraphicsOptions = 21;
57 private static final int PROPERTY_displayable = 22;
58 private static final int PROPERTY_doubleBuffered = 23;
59 private static final int PROPERTY_dropTarget = 24;
60 private static final int PROPERTY_enabled = 25;
61 private static final int PROPERTY_focusable = 26;
62 private static final int PROPERTY_focusCycleRoot = 27;
63 private static final int PROPERTY_focusCycleRootAncestor = 28;
64 private static final int PROPERTY_focusListeners = 29;
65 private static final int PROPERTY_focusOwner = 30;
66 private static final int PROPERTY_focusTraversable = 31;
67 private static final int PROPERTY_focusTraversalKeys = 32;
68 private static final int PROPERTY_focusTraversalKeysEnabled = 33;
69 private static final int PROPERTY_focusTraversalPolicy = 34;
70 private static final int PROPERTY_focusTraversalPolicyProvider = 35;
71 private static final int PROPERTY_focusTraversalPolicySet = 36;
72 private static final int PROPERTY_font = 37;
73 private static final int PROPERTY_fontSet = 38;
74 private static final int PROPERTY_foreground = 39;
75 private static final int PROPERTY_foregroundSet = 40;
76 private static final int PROPERTY_foto = 41;
77 private static final int PROPERTY_graphics = 42;
78 private static final int PROPERTY_graphicsConfiguration = 43;
79 private static final int PROPERTY_height = 44;
80 private static final int PROPERTY_hierarchyBoundsListeners = 45;
81 private static final int PROPERTY_hierarchyListeners = 46;
82 private static final int PROPERTY_ignoreRepaint = 47;
83 private static final int PROPERTY_inheritsPopupMenu = 48;
84 private static final int PROPERTY_inputContext = 49;
85 private static final int PROPERTY_inputMap = 50;
86 private static final int PROPERTY_inputMethodListeners = 51;
87 private static final int PROPERTY_inputMethodRequests = 52;
88 private static final int PROPERTY_inputVerifier = 53;
89 private static final int PROPERTY_insets = 54;
90 private static final int PROPERTY_keyListeners = 55;
91 private static final int PROPERTY_layout = 56;
92 private static final int PROPERTY_lblFotoInfo = 57;
93 private static final int PROPERTY_lightweight = 58;
94 private static final int PROPERTY_locale = 59;
95 private static final int PROPERTY_location = 60;
96 private static final int PROPERTY_locationOnScreen = 61;
97 private static final int PROPERTY_managingFocus = 62;
98 private static final int PROPERTY_maximumSize = 63;
99 private static final int PROPERTY_maximumSizeSet = 64;
100 private static final int PROPERTY_minimumSize = 65;
101 private static final int PROPERTY_minimumSizeSet = 66;
102 private static final int PROPERTY_mouseListeners = 67;
103 private static final int PROPERTY_mouseMotionListeners = 68;
104 private static final int PROPERTY_mousePosition = 69;
105 private static final int PROPERTY_mouseWheelListeners = 70;
106 private static final int PROPERTY_name = 71;
107 private static final int PROPERTY_nextFocusableComponent = 72;
108 private static final int PROPERTY_nomeArquivo = 73;
109 private static final int PROPERTY_opaque = 74;
110 private static final int PROPERTY_optimizedDrawingEnabled = 75;
111 private static final int PROPERTY_paintingForPrint = 76;
112 private static final int PROPERTY_paintingTile = 77;
113 private static final int PROPERTY_parent = 78;
114 private static final int PROPERTY_peer = 79;
115 private static final int PROPERTY_preferredSize = 80;
116 private static final int PROPERTY_preferredSizeSet = 81;
117 private static final int PROPERTY_propertyChangeListeners = 82;
118 private static final int PROPERTY_registeredKeyStrokes = 83;
119 private static final int PROPERTY_requestFocusEnabled = 84;
120 private static final int PROPERTY_rootPane = 85;
121 private static final int PROPERTY_showing = 86;
122 private static final int PROPERTY_size = 87;
123 private static final int PROPERTY_toolkit = 88;
124 private static final int PROPERTY_toolTipText = 89;
125 private static final int PROPERTY_topLevelAncestor = 90;
126 private static final int PROPERTY_transferHandler = 91;
127 private static final int PROPERTY_treeLock = 92;
128 private static final int PROPERTY_UI = 93;
129 private static final int PROPERTY_UIClassID = 94;
130 private static final int PROPERTY_valid = 95;
131 private static final int PROPERTY_validateRoot = 96;
132 private static final int PROPERTY_verifyInputWhenFocusTarget = 97;
133 private static final int PROPERTY_vetoableChangeListeners = 98;
134 private static final int PROPERTY_visible = 99;
135 private static final int PROPERTY_visibleRect = 100;
136 private static final int PROPERTY_width = 101;
137 private static final int PROPERTY_x = 102;
138 private static final int PROPERTY_y = 103;
139
140
141
142 private static PropertyDescriptor[] getPdescriptor(){
143 PropertyDescriptor[] properties = new PropertyDescriptor[104];
144
145 try {
146 properties[PROPERTY_accessibleContext] = new PropertyDescriptor ( "accessibleContext", net.sf.webphotos.gui.component.PainelFoto.class, "getAccessibleContext", null );
147 properties[PROPERTY_actionMap] = new PropertyDescriptor ( "actionMap", net.sf.webphotos.gui.component.PainelFoto.class, "getActionMap", "setActionMap" );
148 properties[PROPERTY_alignmentX] = new PropertyDescriptor ( "alignmentX", net.sf.webphotos.gui.component.PainelFoto.class, "getAlignmentX", "setAlignmentX" );
149 properties[PROPERTY_alignmentY] = new PropertyDescriptor ( "alignmentY", net.sf.webphotos.gui.component.PainelFoto.class, "getAlignmentY", "setAlignmentY" );
150 properties[PROPERTY_ancestorListeners] = new PropertyDescriptor ( "ancestorListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getAncestorListeners", null );
151 properties[PROPERTY_autoscrolls] = new PropertyDescriptor ( "autoscrolls", net.sf.webphotos.gui.component.PainelFoto.class, "getAutoscrolls", "setAutoscrolls" );
152 properties[PROPERTY_background] = new PropertyDescriptor ( "background", net.sf.webphotos.gui.component.PainelFoto.class, "getBackground", "setBackground" );
153 properties[PROPERTY_backgroundSet] = new PropertyDescriptor ( "backgroundSet", net.sf.webphotos.gui.component.PainelFoto.class, "isBackgroundSet", null );
154 properties[PROPERTY_baselineResizeBehavior] = new PropertyDescriptor ( "baselineResizeBehavior", net.sf.webphotos.gui.component.PainelFoto.class, "getBaselineResizeBehavior", null );
155 properties[PROPERTY_border] = new PropertyDescriptor ( "border", net.sf.webphotos.gui.component.PainelFoto.class, "getBorder", "setBorder" );
156 properties[PROPERTY_bounds] = new PropertyDescriptor ( "bounds", net.sf.webphotos.gui.component.PainelFoto.class, "getBounds", "setBounds" );
157 properties[PROPERTY_colorModel] = new PropertyDescriptor ( "colorModel", net.sf.webphotos.gui.component.PainelFoto.class, "getColorModel", null );
158 properties[PROPERTY_component] = new IndexedPropertyDescriptor ( "component", net.sf.webphotos.gui.component.PainelFoto.class, null, null, "getComponent", null );
159 properties[PROPERTY_componentCount] = new PropertyDescriptor ( "componentCount", net.sf.webphotos.gui.component.PainelFoto.class, "getComponentCount", null );
160 properties[PROPERTY_componentListeners] = new PropertyDescriptor ( "componentListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getComponentListeners", null );
161 properties[PROPERTY_componentOrientation] = new PropertyDescriptor ( "componentOrientation", net.sf.webphotos.gui.component.PainelFoto.class, "getComponentOrientation", "setComponentOrientation" );
162 properties[PROPERTY_componentPopupMenu] = new PropertyDescriptor ( "componentPopupMenu", net.sf.webphotos.gui.component.PainelFoto.class, "getComponentPopupMenu", "setComponentPopupMenu" );
163 properties[PROPERTY_components] = new PropertyDescriptor ( "components", net.sf.webphotos.gui.component.PainelFoto.class, "getComponents", null );
164 properties[PROPERTY_containerListeners] = new PropertyDescriptor ( "containerListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getContainerListeners", null );
165 properties[PROPERTY_cursor] = new PropertyDescriptor ( "cursor", net.sf.webphotos.gui.component.PainelFoto.class, "getCursor", "setCursor" );
166 properties[PROPERTY_cursorSet] = new PropertyDescriptor ( "cursorSet", net.sf.webphotos.gui.component.PainelFoto.class, "isCursorSet", null );
167 properties[PROPERTY_debugGraphicsOptions] = new PropertyDescriptor ( "debugGraphicsOptions", net.sf.webphotos.gui.component.PainelFoto.class, "getDebugGraphicsOptions", "setDebugGraphicsOptions" );
168 properties[PROPERTY_displayable] = new PropertyDescriptor ( "displayable", net.sf.webphotos.gui.component.PainelFoto.class, "isDisplayable", null );
169 properties[PROPERTY_doubleBuffered] = new PropertyDescriptor ( "doubleBuffered", net.sf.webphotos.gui.component.PainelFoto.class, "isDoubleBuffered", "setDoubleBuffered" );
170 properties[PROPERTY_dropTarget] = new PropertyDescriptor ( "dropTarget", net.sf.webphotos.gui.component.PainelFoto.class, "getDropTarget", "setDropTarget" );
171 properties[PROPERTY_enabled] = new PropertyDescriptor ( "enabled", net.sf.webphotos.gui.component.PainelFoto.class, "isEnabled", "setEnabled" );
172 properties[PROPERTY_focusable] = new PropertyDescriptor ( "focusable", net.sf.webphotos.gui.component.PainelFoto.class, "isFocusable", "setFocusable" );
173 properties[PROPERTY_focusCycleRoot] = new PropertyDescriptor ( "focusCycleRoot", net.sf.webphotos.gui.component.PainelFoto.class, "isFocusCycleRoot", "setFocusCycleRoot" );
174 properties[PROPERTY_focusCycleRootAncestor] = new PropertyDescriptor ( "focusCycleRootAncestor", net.sf.webphotos.gui.component.PainelFoto.class, "getFocusCycleRootAncestor", null );
175 properties[PROPERTY_focusListeners] = new PropertyDescriptor ( "focusListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getFocusListeners", null );
176 properties[PROPERTY_focusOwner] = new PropertyDescriptor ( "focusOwner", net.sf.webphotos.gui.component.PainelFoto.class, "isFocusOwner", null );
177 properties[PROPERTY_focusTraversable] = new PropertyDescriptor ( "focusTraversable", net.sf.webphotos.gui.component.PainelFoto.class, "isFocusTraversable", null );
178 properties[PROPERTY_focusTraversalKeys] = new IndexedPropertyDescriptor ( "focusTraversalKeys", net.sf.webphotos.gui.component.PainelFoto.class, null, null, null, "setFocusTraversalKeys" );
179 properties[PROPERTY_focusTraversalKeysEnabled] = new PropertyDescriptor ( "focusTraversalKeysEnabled", net.sf.webphotos.gui.component.PainelFoto.class, "getFocusTraversalKeysEnabled", "setFocusTraversalKeysEnabled" );
180 properties[PROPERTY_focusTraversalPolicy] = new PropertyDescriptor ( "focusTraversalPolicy", net.sf.webphotos.gui.component.PainelFoto.class, "getFocusTraversalPolicy", "setFocusTraversalPolicy" );
181 properties[PROPERTY_focusTraversalPolicyProvider] = new PropertyDescriptor ( "focusTraversalPolicyProvider", net.sf.webphotos.gui.component.PainelFoto.class, "isFocusTraversalPolicyProvider", "setFocusTraversalPolicyProvider" );
182 properties[PROPERTY_focusTraversalPolicySet] = new PropertyDescriptor ( "focusTraversalPolicySet", net.sf.webphotos.gui.component.PainelFoto.class, "isFocusTraversalPolicySet", null );
183 properties[PROPERTY_font] = new PropertyDescriptor ( "font", net.sf.webphotos.gui.component.PainelFoto.class, "getFont", "setFont" );
184 properties[PROPERTY_fontSet] = new PropertyDescriptor ( "fontSet", net.sf.webphotos.gui.component.PainelFoto.class, "isFontSet", null );
185 properties[PROPERTY_foreground] = new PropertyDescriptor ( "foreground", net.sf.webphotos.gui.component.PainelFoto.class, "getForeground", "setForeground" );
186 properties[PROPERTY_foregroundSet] = new PropertyDescriptor ( "foregroundSet", net.sf.webphotos.gui.component.PainelFoto.class, "isForegroundSet", null );
187 properties[PROPERTY_foto] = new PropertyDescriptor ( "foto", net.sf.webphotos.gui.component.PainelFoto.class, "getFoto", "setFoto" );
188 properties[PROPERTY_graphics] = new PropertyDescriptor ( "graphics", net.sf.webphotos.gui.component.PainelFoto.class, "getGraphics", null );
189 properties[PROPERTY_graphicsConfiguration] = new PropertyDescriptor ( "graphicsConfiguration", net.sf.webphotos.gui.component.PainelFoto.class, "getGraphicsConfiguration", null );
190 properties[PROPERTY_height] = new PropertyDescriptor ( "height", net.sf.webphotos.gui.component.PainelFoto.class, "getHeight", null );
191 properties[PROPERTY_hierarchyBoundsListeners] = new PropertyDescriptor ( "hierarchyBoundsListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getHierarchyBoundsListeners", null );
192 properties[PROPERTY_hierarchyListeners] = new PropertyDescriptor ( "hierarchyListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getHierarchyListeners", null );
193 properties[PROPERTY_ignoreRepaint] = new PropertyDescriptor ( "ignoreRepaint", net.sf.webphotos.gui.component.PainelFoto.class, "getIgnoreRepaint", "setIgnoreRepaint" );
194 properties[PROPERTY_inheritsPopupMenu] = new PropertyDescriptor ( "inheritsPopupMenu", net.sf.webphotos.gui.component.PainelFoto.class, "getInheritsPopupMenu", "setInheritsPopupMenu" );
195 properties[PROPERTY_inputContext] = new PropertyDescriptor ( "inputContext", net.sf.webphotos.gui.component.PainelFoto.class, "getInputContext", null );
196 properties[PROPERTY_inputMap] = new PropertyDescriptor ( "inputMap", net.sf.webphotos.gui.component.PainelFoto.class, "getInputMap", null );
197 properties[PROPERTY_inputMethodListeners] = new PropertyDescriptor ( "inputMethodListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getInputMethodListeners", null );
198 properties[PROPERTY_inputMethodRequests] = new PropertyDescriptor ( "inputMethodRequests", net.sf.webphotos.gui.component.PainelFoto.class, "getInputMethodRequests", null );
199 properties[PROPERTY_inputVerifier] = new PropertyDescriptor ( "inputVerifier", net.sf.webphotos.gui.component.PainelFoto.class, "getInputVerifier", "setInputVerifier" );
200 properties[PROPERTY_insets] = new PropertyDescriptor ( "insets", net.sf.webphotos.gui.component.PainelFoto.class, "getInsets", null );
201 properties[PROPERTY_keyListeners] = new PropertyDescriptor ( "keyListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getKeyListeners", null );
202 properties[PROPERTY_layout] = new PropertyDescriptor ( "layout", net.sf.webphotos.gui.component.PainelFoto.class, "getLayout", "setLayout" );
203 properties[PROPERTY_lblFotoInfo] = new PropertyDescriptor ( "lblFotoInfo", net.sf.webphotos.gui.component.PainelFoto.class, "getLblFotoInfo", "setLblFotoInfo" );
204 properties[PROPERTY_lightweight] = new PropertyDescriptor ( "lightweight", net.sf.webphotos.gui.component.PainelFoto.class, "isLightweight", null );
205 properties[PROPERTY_locale] = new PropertyDescriptor ( "locale", net.sf.webphotos.gui.component.PainelFoto.class, "getLocale", "setLocale" );
206 properties[PROPERTY_location] = new PropertyDescriptor ( "location", net.sf.webphotos.gui.component.PainelFoto.class, "getLocation", "setLocation" );
207 properties[PROPERTY_locationOnScreen] = new PropertyDescriptor ( "locationOnScreen", net.sf.webphotos.gui.component.PainelFoto.class, "getLocationOnScreen", null );
208 properties[PROPERTY_managingFocus] = new PropertyDescriptor ( "managingFocus", net.sf.webphotos.gui.component.PainelFoto.class, "isManagingFocus", null );
209 properties[PROPERTY_maximumSize] = new PropertyDescriptor ( "maximumSize", net.sf.webphotos.gui.component.PainelFoto.class, "getMaximumSize", "setMaximumSize" );
210 properties[PROPERTY_maximumSizeSet] = new PropertyDescriptor ( "maximumSizeSet", net.sf.webphotos.gui.component.PainelFoto.class, "isMaximumSizeSet", null );
211 properties[PROPERTY_minimumSize] = new PropertyDescriptor ( "minimumSize", net.sf.webphotos.gui.component.PainelFoto.class, "getMinimumSize", "setMinimumSize" );
212 properties[PROPERTY_minimumSizeSet] = new PropertyDescriptor ( "minimumSizeSet", net.sf.webphotos.gui.component.PainelFoto.class, "isMinimumSizeSet", null );
213 properties[PROPERTY_mouseListeners] = new PropertyDescriptor ( "mouseListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getMouseListeners", null );
214 properties[PROPERTY_mouseMotionListeners] = new PropertyDescriptor ( "mouseMotionListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getMouseMotionListeners", null );
215 properties[PROPERTY_mousePosition] = new PropertyDescriptor ( "mousePosition", net.sf.webphotos.gui.component.PainelFoto.class, "getMousePosition", null );
216 properties[PROPERTY_mouseWheelListeners] = new PropertyDescriptor ( "mouseWheelListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getMouseWheelListeners", null );
217 properties[PROPERTY_name] = new PropertyDescriptor ( "name", net.sf.webphotos.gui.component.PainelFoto.class, "getName", "setName" );
218 properties[PROPERTY_nextFocusableComponent] = new PropertyDescriptor ( "nextFocusableComponent", net.sf.webphotos.gui.component.PainelFoto.class, "getNextFocusableComponent", "setNextFocusableComponent" );
219 properties[PROPERTY_nomeArquivo] = new PropertyDescriptor ( "nomeArquivo", net.sf.webphotos.gui.component.PainelFoto.class, "getNomeArquivo", "setNomeArquivo" );
220 properties[PROPERTY_opaque] = new PropertyDescriptor ( "opaque", net.sf.webphotos.gui.component.PainelFoto.class, "isOpaque", "setOpaque" );
221 properties[PROPERTY_optimizedDrawingEnabled] = new PropertyDescriptor ( "optimizedDrawingEnabled", net.sf.webphotos.gui.component.PainelFoto.class, "isOptimizedDrawingEnabled", null );
222 properties[PROPERTY_paintingForPrint] = new PropertyDescriptor ( "paintingForPrint", net.sf.webphotos.gui.component.PainelFoto.class, "isPaintingForPrint", null );
223 properties[PROPERTY_paintingTile] = new PropertyDescriptor ( "paintingTile", net.sf.webphotos.gui.component.PainelFoto.class, "isPaintingTile", null );
224 properties[PROPERTY_parent] = new PropertyDescriptor ( "parent", net.sf.webphotos.gui.component.PainelFoto.class, "getParent", null );
225 properties[PROPERTY_peer] = new PropertyDescriptor ( "peer", net.sf.webphotos.gui.component.PainelFoto.class, "getPeer", null );
226 properties[PROPERTY_preferredSize] = new PropertyDescriptor ( "preferredSize", net.sf.webphotos.gui.component.PainelFoto.class, "getPreferredSize", "setPreferredSize" );
227 properties[PROPERTY_preferredSizeSet] = new PropertyDescriptor ( "preferredSizeSet", net.sf.webphotos.gui.component.PainelFoto.class, "isPreferredSizeSet", null );
228 properties[PROPERTY_propertyChangeListeners] = new PropertyDescriptor ( "propertyChangeListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getPropertyChangeListeners", null );
229 properties[PROPERTY_registeredKeyStrokes] = new PropertyDescriptor ( "registeredKeyStrokes", net.sf.webphotos.gui.component.PainelFoto.class, "getRegisteredKeyStrokes", null );
230 properties[PROPERTY_requestFocusEnabled] = new PropertyDescriptor ( "requestFocusEnabled", net.sf.webphotos.gui.component.PainelFoto.class, "isRequestFocusEnabled", "setRequestFocusEnabled" );
231 properties[PROPERTY_rootPane] = new PropertyDescriptor ( "rootPane", net.sf.webphotos.gui.component.PainelFoto.class, "getRootPane", null );
232 properties[PROPERTY_showing] = new PropertyDescriptor ( "showing", net.sf.webphotos.gui.component.PainelFoto.class, "isShowing", null );
233 properties[PROPERTY_size] = new PropertyDescriptor ( "size", net.sf.webphotos.gui.component.PainelFoto.class, "getSize", "setSize" );
234 properties[PROPERTY_toolkit] = new PropertyDescriptor ( "toolkit", net.sf.webphotos.gui.component.PainelFoto.class, "getToolkit", null );
235 properties[PROPERTY_toolTipText] = new PropertyDescriptor ( "toolTipText", net.sf.webphotos.gui.component.PainelFoto.class, "getToolTipText", "setToolTipText" );
236 properties[PROPERTY_topLevelAncestor] = new PropertyDescriptor ( "topLevelAncestor", net.sf.webphotos.gui.component.PainelFoto.class, "getTopLevelAncestor", null );
237 properties[PROPERTY_transferHandler] = new PropertyDescriptor ( "transferHandler", net.sf.webphotos.gui.component.PainelFoto.class, "getTransferHandler", "setTransferHandler" );
238 properties[PROPERTY_treeLock] = new PropertyDescriptor ( "treeLock", net.sf.webphotos.gui.component.PainelFoto.class, "getTreeLock", null );
239 properties[PROPERTY_UI] = new PropertyDescriptor ( "UI", net.sf.webphotos.gui.component.PainelFoto.class, "getUI", "setUI" );
240 properties[PROPERTY_UIClassID] = new PropertyDescriptor ( "UIClassID", net.sf.webphotos.gui.component.PainelFoto.class, "getUIClassID", null );
241 properties[PROPERTY_valid] = new PropertyDescriptor ( "valid", net.sf.webphotos.gui.component.PainelFoto.class, "isValid", null );
242 properties[PROPERTY_validateRoot] = new PropertyDescriptor ( "validateRoot", net.sf.webphotos.gui.component.PainelFoto.class, "isValidateRoot", null );
243 properties[PROPERTY_verifyInputWhenFocusTarget] = new PropertyDescriptor ( "verifyInputWhenFocusTarget", net.sf.webphotos.gui.component.PainelFoto.class, "getVerifyInputWhenFocusTarget", "setVerifyInputWhenFocusTarget" );
244 properties[PROPERTY_vetoableChangeListeners] = new PropertyDescriptor ( "vetoableChangeListeners", net.sf.webphotos.gui.component.PainelFoto.class, "getVetoableChangeListeners", null );
245 properties[PROPERTY_visible] = new PropertyDescriptor ( "visible", net.sf.webphotos.gui.component.PainelFoto.class, "isVisible", "setVisible" );
246 properties[PROPERTY_visibleRect] = new PropertyDescriptor ( "visibleRect", net.sf.webphotos.gui.component.PainelFoto.class, "getVisibleRect", null );
247 properties[PROPERTY_width] = new PropertyDescriptor ( "width", net.sf.webphotos.gui.component.PainelFoto.class, "getWidth", null );
248 properties[PROPERTY_x] = new PropertyDescriptor ( "x", net.sf.webphotos.gui.component.PainelFoto.class, "getX", null );
249 properties[PROPERTY_y] = new PropertyDescriptor ( "y", net.sf.webphotos.gui.component.PainelFoto.class, "getY", null );
250 }
251 catch(IntrospectionException e) {
252 e.printStackTrace();
253 }
254
255
256
257 return properties; }
258
259 private static final int EVENT_ancestorListener = 0;
260 private static final int EVENT_componentListener = 1;
261 private static final int EVENT_containerListener = 2;
262 private static final int EVENT_focusListener = 3;
263 private static final int EVENT_hierarchyBoundsListener = 4;
264 private static final int EVENT_hierarchyListener = 5;
265 private static final int EVENT_inputMethodListener = 6;
266 private static final int EVENT_keyListener = 7;
267 private static final int EVENT_mouseListener = 8;
268 private static final int EVENT_mouseMotionListener = 9;
269 private static final int EVENT_mouseWheelListener = 10;
270 private static final int EVENT_propertyChangeListener = 11;
271 private static final int EVENT_vetoableChangeListener = 12;
272
273
274
275 private static EventSetDescriptor[] getEdescriptor(){
276 EventSetDescriptor[] eventSets = new EventSetDescriptor[13];
277
278 try {
279 eventSets[EVENT_ancestorListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "ancestorListener", javax.swing.event.AncestorListener.class, new String[] {"ancestorAdded", "ancestorRemoved", "ancestorMoved"}, "addAncestorListener", "removeAncestorListener" );
280 eventSets[EVENT_componentListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "componentListener", java.awt.event.ComponentListener.class, new String[] {"componentResized", "componentMoved", "componentShown", "componentHidden"}, "addComponentListener", "removeComponentListener" );
281 eventSets[EVENT_containerListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "containerListener", java.awt.event.ContainerListener.class, new String[] {"componentAdded", "componentRemoved"}, "addContainerListener", "removeContainerListener" );
282 eventSets[EVENT_focusListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "focusListener", java.awt.event.FocusListener.class, new String[] {"focusGained", "focusLost"}, "addFocusListener", "removeFocusListener" );
283 eventSets[EVENT_hierarchyBoundsListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "hierarchyBoundsListener", java.awt.event.HierarchyBoundsListener.class, new String[] {"ancestorMoved", "ancestorResized"}, "addHierarchyBoundsListener", "removeHierarchyBoundsListener" );
284 eventSets[EVENT_hierarchyListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "hierarchyListener", java.awt.event.HierarchyListener.class, new String[] {"hierarchyChanged"}, "addHierarchyListener", "removeHierarchyListener" );
285 eventSets[EVENT_inputMethodListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "inputMethodListener", java.awt.event.InputMethodListener.class, new String[] {"inputMethodTextChanged", "caretPositionChanged"}, "addInputMethodListener", "removeInputMethodListener" );
286 eventSets[EVENT_keyListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "keyListener", java.awt.event.KeyListener.class, new String[] {"keyTyped", "keyPressed", "keyReleased"}, "addKeyListener", "removeKeyListener" );
287 eventSets[EVENT_mouseListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "mouseListener", java.awt.event.MouseListener.class, new String[] {"mouseClicked", "mousePressed", "mouseReleased", "mouseEntered", "mouseExited"}, "addMouseListener", "removeMouseListener" );
288 eventSets[EVENT_mouseMotionListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "mouseMotionListener", java.awt.event.MouseMotionListener.class, new String[] {"mouseDragged", "mouseMoved"}, "addMouseMotionListener", "removeMouseMotionListener" );
289 eventSets[EVENT_mouseWheelListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "mouseWheelListener", java.awt.event.MouseWheelListener.class, new String[] {"mouseWheelMoved"}, "addMouseWheelListener", "removeMouseWheelListener" );
290 eventSets[EVENT_propertyChangeListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "propertyChangeListener", java.beans.PropertyChangeListener.class, new String[] {"propertyChange"}, "addPropertyChangeListener", "removePropertyChangeListener" );
291 eventSets[EVENT_vetoableChangeListener] = new EventSetDescriptor ( net.sf.webphotos.gui.component.PainelFoto.class, "vetoableChangeListener", java.beans.VetoableChangeListener.class, new String[] {"vetoableChange"}, "addVetoableChangeListener", "removeVetoableChangeListener" );
292 }
293 catch(IntrospectionException e) {
294 e.printStackTrace();
295 }
296
297
298
299 return eventSets; }
300
301 private static final int METHOD_action0 = 0;
302 private static final int METHOD_addNotify1 = 1;
303 private static final int METHOD_addPropertyChangeListener2 = 2;
304 private static final int METHOD_applyComponentOrientation3 = 3;
305 private static final int METHOD_areFocusTraversalKeysSet4 = 4;
306 private static final int METHOD_bounds5 = 5;
307 private static final int METHOD_checkImage6 = 6;
308 private static final int METHOD_checkImage7 = 7;
309 private static final int METHOD_clear8 = 8;
310 private static final int METHOD_computeVisibleRect9 = 9;
311 private static final int METHOD_contains10 = 10;
312 private static final int METHOD_contains11 = 11;
313 private static final int METHOD_countComponents12 = 12;
314 private static final int METHOD_createImage13 = 13;
315 private static final int METHOD_createImage14 = 14;
316 private static final int METHOD_createToolTip15 = 15;
317 private static final int METHOD_createVolatileImage16 = 16;
318 private static final int METHOD_createVolatileImage17 = 17;
319 private static final int METHOD_deliverEvent18 = 18;
320 private static final int METHOD_disable19 = 19;
321 private static final int METHOD_dispatchEvent20 = 20;
322 private static final int METHOD_doLayout21 = 21;
323 private static final int METHOD_enable22 = 22;
324 private static final int METHOD_enable23 = 23;
325 private static final int METHOD_enableInputMethods24 = 24;
326 private static final int METHOD_findComponentAt25 = 25;
327 private static final int METHOD_findComponentAt26 = 26;
328 private static final int METHOD_firePropertyChange27 = 27;
329 private static final int METHOD_firePropertyChange28 = 28;
330 private static final int METHOD_firePropertyChange29 = 29;
331 private static final int METHOD_firePropertyChange30 = 30;
332 private static final int METHOD_firePropertyChange31 = 31;
333 private static final int METHOD_firePropertyChange32 = 32;
334 private static final int METHOD_firePropertyChange33 = 33;
335 private static final int METHOD_firePropertyChange34 = 34;
336 private static final int METHOD_getActionForKeyStroke35 = 35;
337 private static final int METHOD_getBaseline36 = 36;
338 private static final int METHOD_getBounds37 = 37;
339 private static final int METHOD_getClientProperty38 = 38;
340 private static final int METHOD_getComponentAt39 = 39;
341 private static final int METHOD_getComponentAt40 = 40;
342 private static final int METHOD_getComponentZOrder41 = 41;
343 private static final int METHOD_getConditionForKeyStroke42 = 42;
344 private static final int METHOD_getDefaultLocale43 = 43;
345 private static final int METHOD_getDefaultSize44 = 44;
346 private static final int METHOD_getFocusTraversalKeys45 = 45;
347 private static final int METHOD_getFontMetrics46 = 46;
348 private static final int METHOD_getInsets47 = 47;
349 private static final int METHOD_getListeners48 = 48;
350 private static final int METHOD_getLocation49 = 49;
351 private static final int METHOD_getMousePosition50 = 50;
352 private static final int METHOD_getPopupLocation51 = 51;
353 private static final int METHOD_getPropertyChangeListeners52 = 52;
354 private static final int METHOD_getSize53 = 53;
355 private static final int METHOD_getToolTipLocation54 = 54;
356 private static final int METHOD_getToolTipText55 = 55;
357 private static final int METHOD_gotFocus56 = 56;
358 private static final int METHOD_grabFocus57 = 57;
359 private static final int METHOD_handleEvent58 = 58;
360 private static final int METHOD_hasFocus59 = 59;
361 private static final int METHOD_hide60 = 60;
362 private static final int METHOD_imageUpdate61 = 61;
363 private static final int METHOD_insets62 = 62;
364 private static final int METHOD_inside63 = 63;
365 private static final int METHOD_invalidate64 = 64;
366 private static final int METHOD_isAncestorOf65 = 65;
367 private static final int METHOD_isFocusCycleRoot66 = 66;
368 private static final int METHOD_isLightweightComponent67 = 67;
369 private static final int METHOD_keyDown68 = 68;
370 private static final int METHOD_keyUp69 = 69;
371 private static final int METHOD_layout70 = 70;
372 private static final int METHOD_list71 = 71;
373 private static final int METHOD_list72 = 72;
374 private static final int METHOD_list73 = 73;
375 private static final int METHOD_list74 = 74;
376 private static final int METHOD_list75 = 75;
377 private static final int METHOD_loadImage76 = 76;
378 private static final int METHOD_loadImage77 = 77;
379 private static final int METHOD_locate78 = 78;
380 private static final int METHOD_location79 = 79;
381 private static final int METHOD_lostFocus80 = 80;
382 private static final int METHOD_minimumSize81 = 81;
383 private static final int METHOD_mouseDown82 = 82;
384 private static final int METHOD_mouseDrag83 = 83;
385 private static final int METHOD_mouseEnter84 = 84;
386 private static final int METHOD_mouseExit85 = 85;
387 private static final int METHOD_mouseMove86 = 86;
388 private static final int METHOD_mouseUp87 = 87;
389 private static final int METHOD_move88 = 88;
390 private static final int METHOD_nextFocus89 = 89;
391 private static final int METHOD_paint90 = 90;
392 private static final int METHOD_paintAll91 = 91;
393 private static final int METHOD_paintComponents92 = 92;
394 private static final int METHOD_paintImmediately93 = 93;
395 private static final int METHOD_paintImmediately94 = 94;
396 private static final int METHOD_postEvent95 = 95;
397 private static final int METHOD_preferredSize96 = 96;
398 private static final int METHOD_prepareImage97 = 97;
399 private static final int METHOD_prepareImage98 = 98;
400 private static final int METHOD_print99 = 99;
401 private static final int METHOD_printAll100 = 100;
402 private static final int METHOD_printComponents101 = 101;
403 private static final int METHOD_putClientProperty102 = 102;
404 private static final int METHOD_registerKeyboardAction103 = 103;
405 private static final int METHOD_registerKeyboardAction104 = 104;
406 private static final int METHOD_remove105 = 105;
407 private static final int METHOD_remove106 = 106;
408 private static final int METHOD_remove107 = 107;
409 private static final int METHOD_removeAll108 = 108;
410 private static final int METHOD_removeNotify109 = 109;
411 private static final int METHOD_removePropertyChangeListener110 = 110;
412 private static final int METHOD_repaint111 = 111;
413 private static final int METHOD_repaint112 = 112;
414 private static final int METHOD_repaint113 = 113;
415 private static final int METHOD_repaint114 = 114;
416 private static final int METHOD_repaint115 = 115;
417 private static final int METHOD_requestDefaultFocus116 = 116;
418 private static final int METHOD_requestFocus117 = 117;
419 private static final int METHOD_requestFocus118 = 118;
420 private static final int METHOD_requestFocusInWindow119 = 119;
421 private static final int METHOD_resetKeyboardActions120 = 120;
422 private static final int METHOD_reshape121 = 121;
423 private static final int METHOD_resize122 = 122;
424 private static final int METHOD_resize123 = 123;
425 private static final int METHOD_revalidate124 = 124;
426 private static final int METHOD_scrollRectToVisible125 = 125;
427 private static final int METHOD_setBounds126 = 126;
428 private static final int METHOD_setComponentZOrder127 = 127;
429 private static final int METHOD_setDefaultLocale128 = 128;
430 private static final int METHOD_show129 = 129;
431 private static final int METHOD_show130 = 130;
432 private static final int METHOD_size131 = 131;
433 private static final int METHOD_toString132 = 132;
434 private static final int METHOD_transferFocus133 = 133;
435 private static final int METHOD_transferFocusBackward134 = 134;
436 private static final int METHOD_transferFocusDownCycle135 = 135;
437 private static final int METHOD_transferFocusUpCycle136 = 136;
438 private static final int METHOD_unregisterKeyboardAction137 = 137;
439 private static final int METHOD_update138 = 138;
440 private static final int METHOD_updateUI139 = 139;
441 private static final int METHOD_validate140 = 140;
442
443
444
445 private static MethodDescriptor[] getMdescriptor(){
446 MethodDescriptor[] methods = new MethodDescriptor[141];
447
448 try {
449 methods[METHOD_action0] = new MethodDescriptor(java.awt.Component.class.getMethod("action", new Class[] {java.awt.Event.class, java.lang.Object.class}));
450 methods[METHOD_action0].setDisplayName ( "" );
451 methods[METHOD_addNotify1] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("addNotify", new Class[] {}));
452 methods[METHOD_addNotify1].setDisplayName ( "" );
453 methods[METHOD_addPropertyChangeListener2] = new MethodDescriptor(java.awt.Container.class.getMethod("addPropertyChangeListener", new Class[] {java.lang.String.class, java.beans.PropertyChangeListener.class}));
454 methods[METHOD_addPropertyChangeListener2].setDisplayName ( "" );
455 methods[METHOD_applyComponentOrientation3] = new MethodDescriptor(java.awt.Container.class.getMethod("applyComponentOrientation", new Class[] {java.awt.ComponentOrientation.class}));
456 methods[METHOD_applyComponentOrientation3].setDisplayName ( "" );
457 methods[METHOD_areFocusTraversalKeysSet4] = new MethodDescriptor(java.awt.Container.class.getMethod("areFocusTraversalKeysSet", new Class[] {int.class}));
458 methods[METHOD_areFocusTraversalKeysSet4].setDisplayName ( "" );
459 methods[METHOD_bounds5] = new MethodDescriptor(java.awt.Component.class.getMethod("bounds", new Class[] {}));
460 methods[METHOD_bounds5].setDisplayName ( "" );
461 methods[METHOD_checkImage6] = new MethodDescriptor(java.awt.Component.class.getMethod("checkImage", new Class[] {java.awt.Image.class, java.awt.image.ImageObserver.class}));
462 methods[METHOD_checkImage6].setDisplayName ( "" );
463 methods[METHOD_checkImage7] = new MethodDescriptor(java.awt.Component.class.getMethod("checkImage", new Class[] {java.awt.Image.class, int.class, int.class, java.awt.image.ImageObserver.class}));
464 methods[METHOD_checkImage7].setDisplayName ( "" );
465 methods[METHOD_clear8] = new MethodDescriptor(net.sf.webphotos.gui.component.PainelFoto.class.getMethod("clear", new Class[] {}));
466 methods[METHOD_clear8].setDisplayName ( "" );
467 methods[METHOD_computeVisibleRect9] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("computeVisibleRect", new Class[] {java.awt.Rectangle.class}));
468 methods[METHOD_computeVisibleRect9].setDisplayName ( "" );
469 methods[METHOD_contains10] = new MethodDescriptor(java.awt.Component.class.getMethod("contains", new Class[] {java.awt.Point.class}));
470 methods[METHOD_contains10].setDisplayName ( "" );
471 methods[METHOD_contains11] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("contains", new Class[] {int.class, int.class}));
472 methods[METHOD_contains11].setDisplayName ( "" );
473 methods[METHOD_countComponents12] = new MethodDescriptor(java.awt.Container.class.getMethod("countComponents", new Class[] {}));
474 methods[METHOD_countComponents12].setDisplayName ( "" );
475 methods[METHOD_createImage13] = new MethodDescriptor(java.awt.Component.class.getMethod("createImage", new Class[] {java.awt.image.ImageProducer.class}));
476 methods[METHOD_createImage13].setDisplayName ( "" );
477 methods[METHOD_createImage14] = new MethodDescriptor(java.awt.Component.class.getMethod("createImage", new Class[] {int.class, int.class}));
478 methods[METHOD_createImage14].setDisplayName ( "" );
479 methods[METHOD_createToolTip15] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("createToolTip", new Class[] {}));
480 methods[METHOD_createToolTip15].setDisplayName ( "" );
481 methods[METHOD_createVolatileImage16] = new MethodDescriptor(java.awt.Component.class.getMethod("createVolatileImage", new Class[] {int.class, int.class}));
482 methods[METHOD_createVolatileImage16].setDisplayName ( "" );
483 methods[METHOD_createVolatileImage17] = new MethodDescriptor(java.awt.Component.class.getMethod("createVolatileImage", new Class[] {int.class, int.class, java.awt.ImageCapabilities.class}));
484 methods[METHOD_createVolatileImage17].setDisplayName ( "" );
485 methods[METHOD_deliverEvent18] = new MethodDescriptor(java.awt.Container.class.getMethod("deliverEvent", new Class[] {java.awt.Event.class}));
486 methods[METHOD_deliverEvent18].setDisplayName ( "" );
487 methods[METHOD_disable19] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("disable", new Class[] {}));
488 methods[METHOD_disable19].setDisplayName ( "" );
489 methods[METHOD_dispatchEvent20] = new MethodDescriptor(java.awt.Component.class.getMethod("dispatchEvent", new Class[] {java.awt.AWTEvent.class}));
490 methods[METHOD_dispatchEvent20].setDisplayName ( "" );
491 methods[METHOD_doLayout21] = new MethodDescriptor(java.awt.Container.class.getMethod("doLayout", new Class[] {}));
492 methods[METHOD_doLayout21].setDisplayName ( "" );
493 methods[METHOD_enable22] = new MethodDescriptor(java.awt.Component.class.getMethod("enable", new Class[] {boolean.class}));
494 methods[METHOD_enable22].setDisplayName ( "" );
495 methods[METHOD_enable23] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("enable", new Class[] {}));
496 methods[METHOD_enable23].setDisplayName ( "" );
497 methods[METHOD_enableInputMethods24] = new MethodDescriptor(java.awt.Component.class.getMethod("enableInputMethods", new Class[] {boolean.class}));
498 methods[METHOD_enableInputMethods24].setDisplayName ( "" );
499 methods[METHOD_findComponentAt25] = new MethodDescriptor(java.awt.Container.class.getMethod("findComponentAt", new Class[] {int.class, int.class}));
500 methods[METHOD_findComponentAt25].setDisplayName ( "" );
501 methods[METHOD_findComponentAt26] = new MethodDescriptor(java.awt.Container.class.getMethod("findComponentAt", new Class[] {java.awt.Point.class}));
502 methods[METHOD_findComponentAt26].setDisplayName ( "" );
503 methods[METHOD_firePropertyChange27] = new MethodDescriptor(java.awt.Component.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, byte.class, byte.class}));
504 methods[METHOD_firePropertyChange27].setDisplayName ( "" );
505 methods[METHOD_firePropertyChange28] = new MethodDescriptor(java.awt.Component.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, short.class, short.class}));
506 methods[METHOD_firePropertyChange28].setDisplayName ( "" );
507 methods[METHOD_firePropertyChange29] = new MethodDescriptor(java.awt.Component.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, long.class, long.class}));
508 methods[METHOD_firePropertyChange29].setDisplayName ( "" );
509 methods[METHOD_firePropertyChange30] = new MethodDescriptor(java.awt.Component.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, float.class, float.class}));
510 methods[METHOD_firePropertyChange30].setDisplayName ( "" );
511 methods[METHOD_firePropertyChange31] = new MethodDescriptor(java.awt.Component.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, double.class, double.class}));
512 methods[METHOD_firePropertyChange31].setDisplayName ( "" );
513 methods[METHOD_firePropertyChange32] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, boolean.class, boolean.class}));
514 methods[METHOD_firePropertyChange32].setDisplayName ( "" );
515 methods[METHOD_firePropertyChange33] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, int.class, int.class}));
516 methods[METHOD_firePropertyChange33].setDisplayName ( "" );
517 methods[METHOD_firePropertyChange34] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("firePropertyChange", new Class[] {java.lang.String.class, char.class, char.class}));
518 methods[METHOD_firePropertyChange34].setDisplayName ( "" );
519 methods[METHOD_getActionForKeyStroke35] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getActionForKeyStroke", new Class[] {javax.swing.KeyStroke.class}));
520 methods[METHOD_getActionForKeyStroke35].setDisplayName ( "" );
521 methods[METHOD_getBaseline36] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getBaseline", new Class[] {int.class, int.class}));
522 methods[METHOD_getBaseline36].setDisplayName ( "" );
523 methods[METHOD_getBounds37] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getBounds", new Class[] {java.awt.Rectangle.class}));
524 methods[METHOD_getBounds37].setDisplayName ( "" );
525 methods[METHOD_getClientProperty38] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getClientProperty", new Class[] {java.lang.Object.class}));
526 methods[METHOD_getClientProperty38].setDisplayName ( "" );
527 methods[METHOD_getComponentAt39] = new MethodDescriptor(java.awt.Container.class.getMethod("getComponentAt", new Class[] {int.class, int.class}));
528 methods[METHOD_getComponentAt39].setDisplayName ( "" );
529 methods[METHOD_getComponentAt40] = new MethodDescriptor(java.awt.Container.class.getMethod("getComponentAt", new Class[] {java.awt.Point.class}));
530 methods[METHOD_getComponentAt40].setDisplayName ( "" );
531 methods[METHOD_getComponentZOrder41] = new MethodDescriptor(java.awt.Container.class.getMethod("getComponentZOrder", new Class[] {java.awt.Component.class}));
532 methods[METHOD_getComponentZOrder41].setDisplayName ( "" );
533 methods[METHOD_getConditionForKeyStroke42] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getConditionForKeyStroke", new Class[] {javax.swing.KeyStroke.class}));
534 methods[METHOD_getConditionForKeyStroke42].setDisplayName ( "" );
535 methods[METHOD_getDefaultLocale43] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getDefaultLocale", new Class[] {}));
536 methods[METHOD_getDefaultLocale43].setDisplayName ( "" );
537 methods[METHOD_getDefaultSize44] = new MethodDescriptor(net.sf.webphotos.gui.component.PainelFoto.class.getMethod("getDefaultSize", new Class[] {}));
538 methods[METHOD_getDefaultSize44].setDisplayName ( "" );
539 methods[METHOD_getFocusTraversalKeys45] = new MethodDescriptor(java.awt.Container.class.getMethod("getFocusTraversalKeys", new Class[] {int.class}));
540 methods[METHOD_getFocusTraversalKeys45].setDisplayName ( "" );
541 methods[METHOD_getFontMetrics46] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getFontMetrics", new Class[] {java.awt.Font.class}));
542 methods[METHOD_getFontMetrics46].setDisplayName ( "" );
543 methods[METHOD_getInsets47] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getInsets", new Class[] {java.awt.Insets.class}));
544 methods[METHOD_getInsets47].setDisplayName ( "" );
545 methods[METHOD_getListeners48] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getListeners", new Class[] {java.lang.Class.class}));
546 methods[METHOD_getListeners48].setDisplayName ( "" );
547 methods[METHOD_getLocation49] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getLocation", new Class[] {java.awt.Point.class}));
548 methods[METHOD_getLocation49].setDisplayName ( "" );
549 methods[METHOD_getMousePosition50] = new MethodDescriptor(java.awt.Container.class.getMethod("getMousePosition", new Class[] {boolean.class}));
550 methods[METHOD_getMousePosition50].setDisplayName ( "" );
551 methods[METHOD_getPopupLocation51] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getPopupLocation", new Class[] {java.awt.event.MouseEvent.class}));
552 methods[METHOD_getPopupLocation51].setDisplayName ( "" );
553 methods[METHOD_getPropertyChangeListeners52] = new MethodDescriptor(java.awt.Component.class.getMethod("getPropertyChangeListeners", new Class[] {java.lang.String.class}));
554 methods[METHOD_getPropertyChangeListeners52].setDisplayName ( "" );
555 methods[METHOD_getSize53] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getSize", new Class[] {java.awt.Dimension.class}));
556 methods[METHOD_getSize53].setDisplayName ( "" );
557 methods[METHOD_getToolTipLocation54] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getToolTipLocation", new Class[] {java.awt.event.MouseEvent.class}));
558 methods[METHOD_getToolTipLocation54].setDisplayName ( "" );
559 methods[METHOD_getToolTipText55] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("getToolTipText", new Class[] {java.awt.event.MouseEvent.class}));
560 methods[METHOD_getToolTipText55].setDisplayName ( "" );
561 methods[METHOD_gotFocus56] = new MethodDescriptor(java.awt.Component.class.getMethod("gotFocus", new Class[] {java.awt.Event.class, java.lang.Object.class}));
562 methods[METHOD_gotFocus56].setDisplayName ( "" );
563 methods[METHOD_grabFocus57] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("grabFocus", new Class[] {}));
564 methods[METHOD_grabFocus57].setDisplayName ( "" );
565 methods[METHOD_handleEvent58] = new MethodDescriptor(java.awt.Component.class.getMethod("handleEvent", new Class[] {java.awt.Event.class}));
566 methods[METHOD_handleEvent58].setDisplayName ( "" );
567 methods[METHOD_hasFocus59] = new MethodDescriptor(java.awt.Component.class.getMethod("hasFocus", new Class[] {}));
568 methods[METHOD_hasFocus59].setDisplayName ( "" );
569 methods[METHOD_hide60] = new MethodDescriptor(java.awt.Component.class.getMethod("hide", new Class[] {}));
570 methods[METHOD_hide60].setDisplayName ( "" );
571 methods[METHOD_imageUpdate61] = new MethodDescriptor(java.awt.Component.class.getMethod("imageUpdate", new Class[] {java.awt.Image.class, int.class, int.class, int.class, int.class, int.class}));
572 methods[METHOD_imageUpdate61].setDisplayName ( "" );
573 methods[METHOD_insets62] = new MethodDescriptor(java.awt.Container.class.getMethod("insets", new Class[] {}));
574 methods[METHOD_insets62].setDisplayName ( "" );
575 methods[METHOD_inside63] = new MethodDescriptor(java.awt.Component.class.getMethod("inside", new Class[] {int.class, int.class}));
576 methods[METHOD_inside63].setDisplayName ( "" );
577 methods[METHOD_invalidate64] = new MethodDescriptor(java.awt.Container.class.getMethod("invalidate", new Class[] {}));
578 methods[METHOD_invalidate64].setDisplayName ( "" );
579 methods[METHOD_isAncestorOf65] = new MethodDescriptor(java.awt.Container.class.getMethod("isAncestorOf", new Class[] {java.awt.Component.class}));
580 methods[METHOD_isAncestorOf65].setDisplayName ( "" );
581 methods[METHOD_isFocusCycleRoot66] = new MethodDescriptor(java.awt.Container.class.getMethod("isFocusCycleRoot", new Class[] {java.awt.Container.class}));
582 methods[METHOD_isFocusCycleRoot66].setDisplayName ( "" );
583 methods[METHOD_isLightweightComponent67] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("isLightweightComponent", new Class[] {java.awt.Component.class}));
584 methods[METHOD_isLightweightComponent67].setDisplayName ( "" );
585 methods[METHOD_keyDown68] = new MethodDescriptor(java.awt.Component.class.getMethod("keyDown", new Class[] {java.awt.Event.class, int.class}));
586 methods[METHOD_keyDown68].setDisplayName ( "" );
587 methods[METHOD_keyUp69] = new MethodDescriptor(java.awt.Component.class.getMethod("keyUp", new Class[] {java.awt.Event.class, int.class}));
588 methods[METHOD_keyUp69].setDisplayName ( "" );
589 methods[METHOD_layout70] = new MethodDescriptor(java.awt.Container.class.getMethod("layout", new Class[] {}));
590 methods[METHOD_layout70].setDisplayName ( "" );
591 methods[METHOD_list71] = new MethodDescriptor(java.awt.Component.class.getMethod("list", new Class[] {}));
592 methods[METHOD_list71].setDisplayName ( "" );
593 methods[METHOD_list72] = new MethodDescriptor(java.awt.Component.class.getMethod("list", new Class[] {java.io.PrintStream.class}));
594 methods[METHOD_list72].setDisplayName ( "" );
595 methods[METHOD_list73] = new MethodDescriptor(java.awt.Component.class.getMethod("list", new Class[] {java.io.PrintWriter.class}));
596 methods[METHOD_list73].setDisplayName ( "" );
597 methods[METHOD_list74] = new MethodDescriptor(java.awt.Container.class.getMethod("list", new Class[] {java.io.PrintStream.class, int.class}));
598 methods[METHOD_list74].setDisplayName ( "" );
599 methods[METHOD_list75] = new MethodDescriptor(java.awt.Container.class.getMethod("list", new Class[] {java.io.PrintWriter.class, int.class}));
600 methods[METHOD_list75].setDisplayName ( "" );
601 methods[METHOD_loadImage76] = new MethodDescriptor(net.sf.webphotos.gui.component.PainelFoto.class.getMethod("loadImage", new Class[] {java.lang.String.class}));
602 methods[METHOD_loadImage76].setDisplayName ( "" );
603 methods[METHOD_loadImage77] = new MethodDescriptor(net.sf.webphotos.gui.component.PainelFoto.class.getMethod("loadImage", new Class[] {}));
604 methods[METHOD_loadImage77].setDisplayName ( "" );
605 methods[METHOD_locate78] = new MethodDescriptor(java.awt.Container.class.getMethod("locate", new Class[] {int.class, int.class}));
606 methods[METHOD_locate78].setDisplayName ( "" );
607 methods[METHOD_location79] = new MethodDescriptor(java.awt.Component.class.getMethod("location", new Class[] {}));
608 methods[METHOD_location79].setDisplayName ( "" );
609 methods[METHOD_lostFocus80] = new MethodDescriptor(java.awt.Component.class.getMethod("lostFocus", new Class[] {java.awt.Event.class, java.lang.Object.class}));
610 methods[METHOD_lostFocus80].setDisplayName ( "" );
611 methods[METHOD_minimumSize81] = new MethodDescriptor(java.awt.Container.class.getMethod("minimumSize", new Class[] {}));
612 methods[METHOD_minimumSize81].setDisplayName ( "" );
613 methods[METHOD_mouseDown82] = new MethodDescriptor(java.awt.Component.class.getMethod("mouseDown", new Class[] {java.awt.Event.class, int.class, int.class}));
614 methods[METHOD_mouseDown82].setDisplayName ( "" );
615 methods[METHOD_mouseDrag83] = new MethodDescriptor(java.awt.Component.class.getMethod("mouseDrag", new Class[] {java.awt.Event.class, int.class, int.class}));
616 methods[METHOD_mouseDrag83].setDisplayName ( "" );
617 methods[METHOD_mouseEnter84] = new MethodDescriptor(java.awt.Component.class.getMethod("mouseEnter", new Class[] {java.awt.Event.class, int.class, int.class}));
618 methods[METHOD_mouseEnter84].setDisplayName ( "" );
619 methods[METHOD_mouseExit85] = new MethodDescriptor(java.awt.Component.class.getMethod("mouseExit", new Class[] {java.awt.Event.class, int.class, int.class}));
620 methods[METHOD_mouseExit85].setDisplayName ( "" );
621 methods[METHOD_mouseMove86] = new MethodDescriptor(java.awt.Component.class.getMethod("mouseMove", new Class[] {java.awt.Event.class, int.class, int.class}));
622 methods[METHOD_mouseMove86].setDisplayName ( "" );
623 methods[METHOD_mouseUp87] = new MethodDescriptor(java.awt.Component.class.getMethod("mouseUp", new Class[] {java.awt.Event.class, int.class, int.class}));
624 methods[METHOD_mouseUp87].setDisplayName ( "" );
625 methods[METHOD_move88] = new MethodDescriptor(java.awt.Component.class.getMethod("move", new Class[] {int.class, int.class}));
626 methods[METHOD_move88].setDisplayName ( "" );
627 methods[METHOD_nextFocus89] = new MethodDescriptor(java.awt.Component.class.getMethod("nextFocus", new Class[] {}));
628 methods[METHOD_nextFocus89].setDisplayName ( "" );
629 methods[METHOD_paint90] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("paint", new Class[] {java.awt.Graphics.class}));
630 methods[METHOD_paint90].setDisplayName ( "" );
631 methods[METHOD_paintAll91] = new MethodDescriptor(java.awt.Component.class.getMethod("paintAll", new Class[] {java.awt.Graphics.class}));
632 methods[METHOD_paintAll91].setDisplayName ( "" );
633 methods[METHOD_paintComponents92] = new MethodDescriptor(java.awt.Container.class.getMethod("paintComponents", new Class[] {java.awt.Graphics.class}));
634 methods[METHOD_paintComponents92].setDisplayName ( "" );
635 methods[METHOD_paintImmediately93] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("paintImmediately", new Class[] {int.class, int.class, int.class, int.class}));
636 methods[METHOD_paintImmediately93].setDisplayName ( "" );
637 methods[METHOD_paintImmediately94] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("paintImmediately", new Class[] {java.awt.Rectangle.class}));
638 methods[METHOD_paintImmediately94].setDisplayName ( "" );
639 methods[METHOD_postEvent95] = new MethodDescriptor(java.awt.Component.class.getMethod("postEvent", new Class[] {java.awt.Event.class}));
640 methods[METHOD_postEvent95].setDisplayName ( "" );
641 methods[METHOD_preferredSize96] = new MethodDescriptor(java.awt.Container.class.getMethod("preferredSize", new Class[] {}));
642 methods[METHOD_preferredSize96].setDisplayName ( "" );
643 methods[METHOD_prepareImage97] = new MethodDescriptor(java.awt.Component.class.getMethod("prepareImage", new Class[] {java.awt.Image.class, java.awt.image.ImageObserver.class}));
644 methods[METHOD_prepareImage97].setDisplayName ( "" );
645 methods[METHOD_prepareImage98] = new MethodDescriptor(java.awt.Component.class.getMethod("prepareImage", new Class[] {java.awt.Image.class, int.class, int.class, java.awt.image.ImageObserver.class}));
646 methods[METHOD_prepareImage98].setDisplayName ( "" );
647 methods[METHOD_print99] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("print", new Class[] {java.awt.Graphics.class}));
648 methods[METHOD_print99].setDisplayName ( "" );
649 methods[METHOD_printAll100] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("printAll", new Class[] {java.awt.Graphics.class}));
650 methods[METHOD_printAll100].setDisplayName ( "" );
651 methods[METHOD_printComponents101] = new MethodDescriptor(java.awt.Container.class.getMethod("printComponents", new Class[] {java.awt.Graphics.class}));
652 methods[METHOD_printComponents101].setDisplayName ( "" );
653 methods[METHOD_putClientProperty102] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("putClientProperty", new Class[] {java.lang.Object.class, java.lang.Object.class}));
654 methods[METHOD_putClientProperty102].setDisplayName ( "" );
655 methods[METHOD_registerKeyboardAction103] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("registerKeyboardAction", new Class[] {java.awt.event.ActionListener.class, java.lang.String.class, javax.swing.KeyStroke.class, int.class}));
656 methods[METHOD_registerKeyboardAction103].setDisplayName ( "" );
657 methods[METHOD_registerKeyboardAction104] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("registerKeyboardAction", new Class[] {java.awt.event.ActionListener.class, javax.swing.KeyStroke.class, int.class}));
658 methods[METHOD_registerKeyboardAction104].setDisplayName ( "" );
659 methods[METHOD_remove105] = new MethodDescriptor(java.awt.Component.class.getMethod("remove", new Class[] {java.awt.MenuComponent.class}));
660 methods[METHOD_remove105].setDisplayName ( "" );
661 methods[METHOD_remove106] = new MethodDescriptor(java.awt.Container.class.getMethod("remove", new Class[] {int.class}));
662 methods[METHOD_remove106].setDisplayName ( "" );
663 methods[METHOD_remove107] = new MethodDescriptor(java.awt.Container.class.getMethod("remove", new Class[] {java.awt.Component.class}));
664 methods[METHOD_remove107].setDisplayName ( "" );
665 methods[METHOD_removeAll108] = new MethodDescriptor(java.awt.Container.class.getMethod("removeAll", new Class[] {}));
666 methods[METHOD_removeAll108].setDisplayName ( "" );
667 methods[METHOD_removeNotify109] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("removeNotify", new Class[] {}));
668 methods[METHOD_removeNotify109].setDisplayName ( "" );
669 methods[METHOD_removePropertyChangeListener110] = new MethodDescriptor(java.awt.Component.class.getMethod("removePropertyChangeListener", new Class[] {java.lang.String.class, java.beans.PropertyChangeListener.class}));
670 methods[METHOD_removePropertyChangeListener110].setDisplayName ( "" );
671 methods[METHOD_repaint111] = new MethodDescriptor(java.awt.Component.class.getMethod("repaint", new Class[] {}));
672 methods[METHOD_repaint111].setDisplayName ( "" );
673 methods[METHOD_repaint112] = new MethodDescriptor(java.awt.Component.class.getMethod("repaint", new Class[] {long.class}));
674 methods[METHOD_repaint112].setDisplayName ( "" );
675 methods[METHOD_repaint113] = new MethodDescriptor(java.awt.Component.class.getMethod("repaint", new Class[] {int.class, int.class, int.class, int.class}));
676 methods[METHOD_repaint113].setDisplayName ( "" );
677 methods[METHOD_repaint114] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("repaint", new Class[] {long.class, int.class, int.class, int.class, int.class}));
678 methods[METHOD_repaint114].setDisplayName ( "" );
679 methods[METHOD_repaint115] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("repaint", new Class[] {java.awt.Rectangle.class}));
680 methods[METHOD_repaint115].setDisplayName ( "" );
681 methods[METHOD_requestDefaultFocus116] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("requestDefaultFocus", new Class[] {}));
682 methods[METHOD_requestDefaultFocus116].setDisplayName ( "" );
683 methods[METHOD_requestFocus117] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("requestFocus", new Class[] {}));
684 methods[METHOD_requestFocus117].setDisplayName ( "" );
685 methods[METHOD_requestFocus118] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("requestFocus", new Class[] {boolean.class}));
686 methods[METHOD_requestFocus118].setDisplayName ( "" );
687 methods[METHOD_requestFocusInWindow119] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("requestFocusInWindow", new Class[] {}));
688 methods[METHOD_requestFocusInWindow119].setDisplayName ( "" );
689 methods[METHOD_resetKeyboardActions120] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("resetKeyboardActions", new Class[] {}));
690 methods[METHOD_resetKeyboardActions120].setDisplayName ( "" );
691 methods[METHOD_reshape121] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("reshape", new Class[] {int.class, int.class, int.class, int.class}));
692 methods[METHOD_reshape121].setDisplayName ( "" );
693 methods[METHOD_resize122] = new MethodDescriptor(java.awt.Component.class.getMethod("resize", new Class[] {int.class, int.class}));
694 methods[METHOD_resize122].setDisplayName ( "" );
695 methods[METHOD_resize123] = new MethodDescriptor(java.awt.Component.class.getMethod("resize", new Class[] {java.awt.Dimension.class}));
696 methods[METHOD_resize123].setDisplayName ( "" );
697 methods[METHOD_revalidate124] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("revalidate", new Class[] {}));
698 methods[METHOD_revalidate124].setDisplayName ( "" );
699 methods[METHOD_scrollRectToVisible125] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("scrollRectToVisible", new Class[] {java.awt.Rectangle.class}));
700 methods[METHOD_scrollRectToVisible125].setDisplayName ( "" );
701 methods[METHOD_setBounds126] = new MethodDescriptor(java.awt.Component.class.getMethod("setBounds", new Class[] {int.class, int.class, int.class, int.class}));
702 methods[METHOD_setBounds126].setDisplayName ( "" );
703 methods[METHOD_setComponentZOrder127] = new MethodDescriptor(java.awt.Container.class.getMethod("setComponentZOrder", new Class[] {java.awt.Component.class, int.class}));
704 methods[METHOD_setComponentZOrder127].setDisplayName ( "" );
705 methods[METHOD_setDefaultLocale128] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("setDefaultLocale", new Class[] {java.util.Locale.class}));
706 methods[METHOD_setDefaultLocale128].setDisplayName ( "" );
707 methods[METHOD_show129] = new MethodDescriptor(java.awt.Component.class.getMethod("show", new Class[] {}));
708 methods[METHOD_show129].setDisplayName ( "" );
709 methods[METHOD_show130] = new MethodDescriptor(java.awt.Component.class.getMethod("show", new Class[] {boolean.class}));
710 methods[METHOD_show130].setDisplayName ( "" );
711 methods[METHOD_size131] = new MethodDescriptor(java.awt.Component.class.getMethod("size", new Class[] {}));
712 methods[METHOD_size131].setDisplayName ( "" );
713 methods[METHOD_toString132] = new MethodDescriptor(java.awt.Component.class.getMethod("toString", new Class[] {}));
714 methods[METHOD_toString132].setDisplayName ( "" );
715 methods[METHOD_transferFocus133] = new MethodDescriptor(java.awt.Component.class.getMethod("transferFocus", new Class[] {}));
716 methods[METHOD_transferFocus133].setDisplayName ( "" );
717 methods[METHOD_transferFocusBackward134] = new MethodDescriptor(java.awt.Container.class.getMethod("transferFocusBackward", new Class[] {}));
718 methods[METHOD_transferFocusBackward134].setDisplayName ( "" );
719 methods[METHOD_transferFocusDownCycle135] = new MethodDescriptor(java.awt.Container.class.getMethod("transferFocusDownCycle", new Class[] {}));
720 methods[METHOD_transferFocusDownCycle135].setDisplayName ( "" );
721 methods[METHOD_transferFocusUpCycle136] = new MethodDescriptor(java.awt.Component.class.getMethod("transferFocusUpCycle", new Class[] {}));
722 methods[METHOD_transferFocusUpCycle136].setDisplayName ( "" );
723 methods[METHOD_unregisterKeyboardAction137] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("unregisterKeyboardAction", new Class[] {javax.swing.KeyStroke.class}));
724 methods[METHOD_unregisterKeyboardAction137].setDisplayName ( "" );
725 methods[METHOD_update138] = new MethodDescriptor(javax.swing.JComponent.class.getMethod("update", new Class[] {java.awt.Graphics.class}));
726 methods[METHOD_update138].setDisplayName ( "" );
727 methods[METHOD_updateUI139] = new MethodDescriptor(javax.swing.JPanel.class.getMethod("updateUI", new Class[] {}));
728 methods[METHOD_updateUI139].setDisplayName ( "" );
729 methods[METHOD_validate140] = new MethodDescriptor(java.awt.Container.class.getMethod("validate", new Class[] {}));
730 methods[METHOD_validate140].setDisplayName ( "" );
731 }
732 catch( Exception e) {}
733
734
735
736 return methods; }
737 private static java.awt.Image iconColor16 = null;
738 private static java.awt.Image iconColor32 = null;
739 private static java.awt.Image iconMono16 = null;
740 private static java.awt.Image iconMono32 = null;
741 private static String iconNameC16 = "/icons/camera-mount5-16x16.png";
742 private static String iconNameC32 = "/icons/camera-mount5-32x32.png";
743 private static String iconNameM16 = null;
744 private static String iconNameM32 = null;
745 private static final int defaultPropertyIndex = -1;
746 private static final int defaultEventIndex = -1;
747
748
749
750
751
752
753
754
755
756
757
758
759 @Override
760 public BeanDescriptor getBeanDescriptor() {
761 return getBdescriptor();
762 }
763
764
765
766
767
768
769
770
771
772
773
774
775
776 @Override
777 public PropertyDescriptor[] getPropertyDescriptors() {
778 return getPdescriptor();
779 }
780
781
782
783
784
785
786
787
788
789 @Override
790 public EventSetDescriptor[] getEventSetDescriptors() {
791 return getEdescriptor();
792 }
793
794
795
796
797
798
799
800
801
802 @Override
803 public MethodDescriptor[] getMethodDescriptors() {
804 return getMdescriptor();
805 }
806
807
808
809
810
811
812
813
814
815
816 @Override
817 public int getDefaultPropertyIndex() {
818 return defaultPropertyIndex;
819 }
820
821
822
823
824
825
826
827
828 @Override
829 public int getDefaultEventIndex() {
830 return defaultEventIndex;
831 }
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849 @Override
850 public java.awt.Image getIcon(int iconKind) {
851 switch (iconKind) {
852 case ICON_COLOR_16x16:
853 if (iconNameC16 == null) {
854 return null;
855 } else {
856 if (iconColor16 == null) {
857 iconColor16 = loadImage(iconNameC16);
858 }
859 return iconColor16;
860 }
861 case ICON_COLOR_32x32:
862 if (iconNameC32 == null) {
863 return null;
864 } else {
865 if (iconColor32 == null) {
866 iconColor32 = loadImage(iconNameC32);
867 }
868 return iconColor32;
869 }
870 case ICON_MONO_16x16:
871 if (iconNameM16 == null) {
872 return null;
873 } else {
874 if (iconMono16 == null) {
875 iconMono16 = loadImage(iconNameM16);
876 }
877 return iconMono16;
878 }
879 case ICON_MONO_32x32:
880 if (iconNameM32 == null) {
881 return null;
882 } else {
883 if (iconMono32 == null) {
884 iconMono32 = loadImage(iconNameM32);
885 }
886 return iconMono32;
887 }
888 default:
889 return null;
890 }
891 }
892 }